home *** CD-ROM | disk | FTP | other *** search
- ## delay_start
- # test of the delayed start
-
- # you should see this
- {
- -name delay_start_01
- -start -delay 0 0 0 0
- -stop -delay 0 0 0 0
- -action -print you SHOULD see this
- }
-
- # you should NOT see this because stop will execute before start
- {
- -name delay_start_02
- -start -delay 0 0 0 5
- -stop -delay 0 0 0 0
- -action -print you should NOT see this
- }
-
- # you MAY see this even though the start-time > stop-time. This is because the one-second
- # lead-time may not be sufficient if the start-time + delay has expired by the time
- # we get around to processing this job.
- {
- -name delay_start_03
- -start -delay 0 0 0 1
- -stop -delay 0 0 0 0
- -action -print you MAY see this
- }
-
- # you should see this because start will execute before stop
- {
- -name delay_start_04
- -start -delay 0 0 0 0
- -stop -delay 0 0 0 5
- -action -print you SHOULD see this
- }
-